home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / DOS / CAD_CAM / A7221V1B / PARSE.H < prev    next >
Text File  |  1992-03-12  |  2KB  |  52 lines

  1. /*
  2.    Module:  parse.h
  3.    Date:    3/9/92
  4.    Version: 1.0b
  5.    Author:  Dave Lutz
  6.    Email:   lutz@psych.rochester.edu
  7.    Copyright: 1992 University of Rochester, Psychology Dept.
  8.  
  9.    Disclaimer:  This software is distributed free of charge.  As such, it
  10.                 comes with ABSOLUTELY NO WARRANTY.  The user of the software
  11.                 assumes ALL RISKS associated with its use.
  12.  
  13.                 Your rights to modify and/or distribute this software are
  14.                 outlined in the file ADI7221.DOC.
  15.  
  16.    Purpose: This module provides the function prototype for the function 
  17.             needed to parse the lines from an ADI file, breaking the line 
  18.             into a command and its arguments.
  19.  
  20.    Functions Provided:
  21.  
  22.         parse
  23.  
  24. */
  25.  
  26.  
  27.  
  28.  
  29. /*
  30.    Function: parse
  31.    Purpose:  Parse a line from an ADI file, converting it to a command and
  32.              its arguments.
  33.  
  34.    Pre: line is a pointer to a line from an ADI file.
  35.         cmd is a pointer to storage for the ADI command.
  36.         arg1 is a pointer to storage for the first argument to the command
  37.         (if it has an argument)
  38.         arg2 is a pointer to storage for the second argument to the command
  39.         (if it has two arguments)
  40.  
  41.    Post: An attempt is made to decode line.
  42.          The ADI command found in line is copied to cmd.
  43.          If the command has an argument it is copied to arg1.
  44.          If the command has two arguments, the second is copied to arg2.
  45.          If an error occurs, NOCMD is copied to cmd.
  46.          If arg1 and/or arg2 are not required for a command, their contents
  47.          are undefined.
  48. */
  49.  
  50.  
  51. void parse (char *line, int *cmd, unsigned *arg1, unsigned *arg2);
  52.